GtkStyleContext: Add style classes.
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 20 Mar 2010 12:02:20 +0000 (13:02 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:52 +0000 (15:36 +0100)
Style classes are the replacement of detail strings.

gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index 6dfdf50f269dcb0559f431e544d0c02632d19757..59fc5c3f9b69455140afbe7504738471afb6b3e9 100644 (file)
@@ -44,6 +44,7 @@ struct GtkStyleContextPrivate
   GtkWidgetPath *widget_path;
 
   GtkStateFlags state_flags;
+  GList *style_classes;
 
   GtkThemingEngine *theming_engine;
 };
@@ -361,5 +362,87 @@ gtk_style_context_get_path (GtkStyleContext *context)
   return priv->widget_path;
 }
 
+void
+gtk_style_context_set_class (GtkStyleContext *context,
+                             const gchar     *class_name)
+{
+  GtkStyleContextPrivate *priv;
+  GQuark class_quark;
+  GList *link;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (class_name != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  class_quark = g_quark_from_string (class_name);
+
+  link = priv->style_classes;
+
+  while (link)
+    {
+      GQuark link_quark;
+
+      link_quark = GUINT_TO_POINTER (link->data);
+
+      if (link_quark == class_quark)
+        return;
+      else if (link_quark > class_quark)
+        {
+          priv->style_classes = g_list_insert_before (priv->style_classes,
+                                                      link, GUINT_TO_POINTER (class_quark));
+          return;
+        }
+
+      link = link->next;
+    }
+
+  priv->style_classes = g_list_append (priv->style_classes,
+                                       GUINT_TO_POINTER (class_quark));
+}
+
+void
+gtk_style_context_unset_class (GtkStyleContext *context,
+                               const gchar     *class_name)
+{
+  GtkStyleContextPrivate *priv;
+  GQuark class_quark;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (class_name != NULL);
+
+  class_quark = g_quark_try_string (class_name);
+
+  if (!class_quark)
+    return;
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  priv->style_classes = g_list_remove (priv->style_classes,
+                                       GUINT_TO_POINTER (class_quark));
+}
+
+gboolean
+gtk_style_context_has_class (GtkStyleContext *context,
+                             const gchar     *class_name)
+{
+  GtkStyleContextPrivate *priv;
+  GQuark class_quark;
+
+  g_return_val_if_fail (GTK_IS_STYLE_CONTEXT (context), FALSE);
+  g_return_val_if_fail (class_name != NULL, FALSE);
+
+  class_quark = g_quark_try_string (class_name);
+
+  if (!class_quark)
+    return FALSE;
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+
+  if (g_list_find (priv->style_classes,
+                   GUINT_TO_POINTER (class_quark)))
+    return TRUE;
+
+  return FALSE;
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index 79f0f351e00a8ced346866eb95e318f17d4ba74b..3d594ee2a551b428dc46a191c7c4de48a939cef8 100644 (file)
@@ -77,6 +77,13 @@ void          gtk_style_context_set_path     (GtkStyleContext *context,
                                               GtkWidgetPath   *path);
 G_CONST_RETURN GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
 
+void     gtk_style_context_set_class   (GtkStyleContext *context,
+                                        const gchar     *class_name);
+void     gtk_style_context_unset_class (GtkStyleContext *context,
+                                        const gchar     *class_name);
+gboolean gtk_style_context_has_class   (GtkStyleContext *context,
+                                        const gchar     *class_name);
+
 
 G_END_DECLS